Socket
Socket
Sign inDemoInstall

infinity-agent

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infinity-agent

Creates HTTP/HTTPS Agent with Infinity maxSockets


Version published
Weekly downloads
95K
decreased by-1.06%
Maintainers
1
Weekly downloads
 
Created
Source

infinity-agent Build Status

Returns HTTP/HTTPS agent with maxSockets set to Infinity (based on URL or options).

Motivation: Node 0.10.x is using 5 sockets limit on one host:port pair, but in 0.11.x this is fixed with defaultMaxSockets set to Infinity. To backport this behaviour you can use this module.

Usage

var agent = require('infinity-agent');
var http = require('http');
var https = require('https');

http.get('http://google.com', { agent: agent('http://google.com') });
https.get('http://google.com', { agent: agent('https://google.com') });

API

agent(options)

Returns instance of HTTP/HTTPS agent, based on options.

If http.Agent.defaultMaxSockets is set by user (not equals default 5), then undefined will be returned.

Otherwise agent.httpAgent / agent.httpsAgent will be returned (based on options.protocol).

If options contains any of tls options, then new instance of https.Agent will be returned (with maxSockets set to Infinity, if not present in options).

options

Required
Type: String or Object from url.parse

License

MIT © Vsevolod Strukchinsky

Keywords

FAQs

Package last updated on 31 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc